type github.com/klauspost/compress/flate.hcode

14 uses

	github.com/klauspost/compress/flate (current package)
		huffman_bit_writer.go#L424: func (w *huffmanBitWriter) writeCode(c hcode) {
		huffman_bit_writer.go#L826: func (w *huffmanBitWriter) writeTokens(tokens []token, leCodes, oeCodes []hcode) {
		huffman_code.go#L19: type hcode uint32
		huffman_code.go#L21: func (h hcode) len() uint8 {
		huffman_code.go#L25: func (h hcode) code64() uint64 {
		huffman_code.go#L29: func (h hcode) zero() bool {
		huffman_code.go#L34: 	codes    []hcode
		huffman_code.go#L69: func (h *hcode) set(code uint16, length uint8) {
		huffman_code.go#L70: 	*h = hcode(length) | (hcode(code) << 8)
		huffman_code.go#L73: func newhcode(code uint16, length uint8) hcode {
		huffman_code.go#L74: 	return hcode(length) | (hcode(code) << 8)
		huffman_code.go#L86: 	return &huffmanEncoder{codes: make([]hcode, size, 1<<c)}